Skip to content

Conversation

bob-bot
Copy link

@bob-bot bob-bot commented May 29, 2025

Closes #106

Tested with the following:

Default behavior is insecure = false

select
  url,
  method,
  response_status_code,
  response_error,
  response_body
from
  net_http_request
where
  url = 'https://self-signed.badssl.com';

Same results as:

select
  url,
  method,
  response_status_code,
  response_error,
  response_body
from
  net_http_request
where
  url = 'https://self-signed.badssl.com'
  and insecure = false;

Shows it working with the insecure = true

select
  url,
  method,
  response_status_code,
  response_error,
  response_body
from
  net_http_request
where
  url = 'https://self-signed.badssl.com'
  and insecure = true;

@bob-bot bob-bot requested a review from misraved May 29, 2025 00:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add insecure parameter to net_http_request table for TLS verification control
2 participants